'Declaration Public Function New( _ ByVal index As Integer, _ ByVal arrOldItems() As T, _ ByVal arrNewItems() As T, _ ByVal actionType As ListActionType _ )
'Usage Dim index As Integer Dim arrOldItems() As T Dim arrNewItems() As T Dim actionType As ListActionType Dim instance As New ListChangedEventArgs(Of T)(index, arrOldItems, arrNewItems, actionType)
public ListChangedEventArgs<T>( int index, T[] arrOldItems, T[] arrNewItems, ListActionType actionType )
Parameters
- index
- The index of first changed item.
- arrOldItems
- The old items in the list. These are removed items or items that are going to be changed in the list.
- arrNewItems
- The new items in the list. Contains changed or newly added items.
- actionType
- Type of action being performed on the new and old items.